remote procedure call - определение. Что такое remote procedure call
Diclib.com
Словарь ChatGPT
Введите слово или словосочетание на любом языке 👆
Язык:

Перевод и анализ слов искусственным интеллектом ChatGPT

На этой странице Вы можете получить подробный анализ слова или словосочетания, произведенный с помощью лучшей на сегодняшний день технологии искусственного интеллекта:

  • как употребляется слово
  • частота употребления
  • используется оно чаще в устной или письменной речи
  • варианты перевода слова
  • примеры употребления (несколько фраз с переводом)
  • этимология

Что (кто) такое remote procedure call - определение

MECHANISM TO ALLOW SOFTWARE TO EXECUTE A REMOTE PROCEDURE
Remote Procedure Call; Remote procedure calls; Remoting; Remote method call; List of RPC implementations
Найдено результатов: 2039
Remote Procedure Call         
<networking, programming> (RPC) A protocol which allows a program running on one host to cause code to be executed on another host without the programmer needing to explicitly code for this. RPC is an easy and popular paradigm for implementing the client-server model of {distributed computing}. An RPC is initiated by the caller (client) sending request message to a remote system (the server) to execute a certain procedure using arguments supplied. A result message is returned to the caller. There are many variations and subtleties in various implementations, resulting in a variety of different (incompatible) RPC protocols. Sun RPC is defined in RFC 1057 and ONC RPC in {RFC 1831}. (2003-06-04)
Remote procedure call         
In distributed computing, a remote procedure call (RPC) is when a computer program causes a procedure (subroutine) to execute in a different address space (commonly on another computer on a shared network), which is coded as if it were a normal (local) procedure call, without the programmer explicitly coding the details for the remote interaction. That is, the programmer writes essentially the same code whether the subroutine is local to the executing program, or remote.
Open Network Computing         
COMPUTER NETWORK PROTOCOL
ONC RPC; Open Network Computing; Open network computing; SunRPC; Open Network Computing Remote Procedure Call system; ONCRPC; Open Network Computing Remote Procedure Call
(ONC) Sun's network protocols. [more detail?]
remote sensing         
  • date=10 August 2021 }} ''NASA Earth Expeditions'', 15 August 2018.</ref>}}
  • MLW]] in the north.
  • Illustration of remote sensing
ACQUISITION OF INFORMATION ABOUT AN OBJECT OR PHENOMENON WITHOUT MAKING PHYSICAL CONTACT WITH THE OBJECT, ESPECIALLY THE EARTH
Remote Sensing; Remote sensor; Earth remote sensing; Passive remote sensing; Remote-sensing; Infrared remote sensing; Remote-Sensing Image; Remote sensing satellites; History of remote sensing; Acoustic remote sensing; Remote sensing technology; Applications of remote sensing; Active remote sensing
¦ noun the scanning of the earth by satellite or high-flying aircraft in order to obtain information about it.
Local Inter-Process Communication         
IN MICROSOFT'S WINDOWS NT OPERATING SYSTEMS
Lightweight procedure call; ALPC; Local Procedure Call; Lightweight Procedure Call; Asynchronous Local Inter-Process Communication
The Local Inter-Process Communication (LPC, often also referred to as Local Procedure Call or Lightweight Procedure Call) is an internal, undocumented inter-process communication facility provided by the Microsoft Windows NT kernel for lightweight IPC between processes on the same computer. As of Windows Vista, LPC has been rewritten as Asynchronous Local Inter-Process Communication (ALPC, often also Advanced Local Procedure Call) in order to provide a high-speed scalable communication mechanism required to efficiently implement User-Mode Driver Framework (UMDF), whose user-mode parts require an efficient communication channel with UMDF's components in the executive.
remote sensing         
  • date=10 August 2021 }} ''NASA Earth Expeditions'', 15 August 2018.</ref>}}
  • MLW]] in the north.
  • Illustration of remote sensing
ACQUISITION OF INFORMATION ABOUT AN OBJECT OR PHENOMENON WITHOUT MAKING PHYSICAL CONTACT WITH THE OBJECT, ESPECIALLY THE EARTH
Remote Sensing; Remote sensor; Earth remote sensing; Passive remote sensing; Remote-sensing; Infrared remote sensing; Remote-Sensing Image; Remote sensing satellites; History of remote sensing; Acoustic remote sensing; Remote sensing technology; Applications of remote sensing; Active remote sensing
Remote sensing is the gathering of information about something by observing it from space or from the air.
N-UNCOUNT: oft N n
Remote sensing         
  • date=10 August 2021 }} ''NASA Earth Expeditions'', 15 August 2018.</ref>}}
  • MLW]] in the north.
  • Illustration of remote sensing
ACQUISITION OF INFORMATION ABOUT AN OBJECT OR PHENOMENON WITHOUT MAKING PHYSICAL CONTACT WITH THE OBJECT, ESPECIALLY THE EARTH
Remote Sensing; Remote sensor; Earth remote sensing; Passive remote sensing; Remote-sensing; Infrared remote sensing; Remote-Sensing Image; Remote sensing satellites; History of remote sensing; Acoustic remote sensing; Remote sensing technology; Applications of remote sensing; Active remote sensing
Remote sensing is the acquisition of information about an object or phenomenon without making physical contact with the object, in contrast to in situ or on-site observation. The term is applied especially to acquiring information about Earth and other planets.
remote-controlled         
  • Remote controlled free-flying television camera [[AERCam Sprint]]
  • The infrared diode modulates at a speed corresponding to a particular function. When seen through a digital camera, the diode appears to be emitting pulses of purple light.
  • The [[Brennan torpedo]], one of the earliest "guided missiles".
  • Infrared remote control for the analog [[SLR camera]] [[Canon EOS 100]] from 1991
  • 1950s TV Remote by Motorola
  • [[Philco]] Mystery Control (1939)
  • An [[RCA]] universal remote
  • Used remote controls for sale in a market in [[Hong Kong]].
  • SABA]] corded TV remote
  • [[Wii Remote]].
SYSTEM OR DEVICE USED TO CONTROL OTHER DEVICE REMOTELY (OR WIRELESSLY)
TV remote; TV Remote; IR remote control; Television remote control; RF remote control; Infrared remote control; Remote controller; Remote controls; IR transmitter; Remote-controlled; Channel changer; Remote-control system; Automatic selector; Remote control system; DVD remote; Tv remote; Remote control (television); Touchscreen remote control; Remote commander; Rf remote control; Remote-control; Remote control handset; Remote control (consumer electronics); Cable-controlled; Remote controlled vehicle; History of the remote control; Television remote
A remote-controlled machine or device is controlled from a distance by the use of radio or electronic signals.
...a remote-controlled bomb.
ADJ: usu ADJ n
call sign         
  • Department of Commerce callbook, 1919
  • WWV]], indicating its early location in the U.S. state of [[Maryland]]
UNIQUE DESIGNATION FOR A TRANSMITTING STATION
Television call sign; Call letters; Radio call sign; Call signs; Callsign (radio); Call Letters; Amateur call letters; Call letter; Australian callsigns; W (call sign); Ham prefix; Broadcast call sign; Call Sign; Callsigns; Call-sign; International call sign; International call signs; Call signal; International callsign; Call name (call letters); Callsign
Sequence of letters and numbers, unique to each ship, that identify the ship.
Remote desktop (disambiguation)         
WIKIMEDIA DISAMBIGUATION PAGE
Remote Desktop; Remote Desktop (disambiguation)
Remote desktop is a software or operating system that allows remotely controlling or logging into a desktop via a network connection.

Википедия

Remote procedure call

In distributed computing, a remote procedure call (RPC) is when a computer program causes a procedure (subroutine) to execute in a different address space (commonly on another computer on a shared network), which is written as if it were a normal (local) procedure call, without the programmer explicitly writing the details for the remote interaction. That is, the programmer writes essentially the same code whether the subroutine is local to the executing program, or remote. This is a form of client–server interaction (caller is client, executor is server), typically implemented via a request–response message-passing system. In the object-oriented programming paradigm, RPCs are represented by remote method invocation (RMI). The RPC model implies a level of location transparency, namely that calling procedures are largely the same whether they are local or remote, but usually, they are not identical, so local calls can be distinguished from remote calls. Remote calls are usually orders of magnitude slower and less reliable than local calls, so distinguishing them is important.

RPCs are a form of inter-process communication (IPC), in that different processes have different address spaces: if on the same host machine, they have distinct virtual address spaces, even though the physical address space is the same; while if they are on different hosts, the physical address space is different. Many different (often incompatible) technologies have been used to implement the concept.